We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
metadata.content.ts•516 B
import { type Dictionary, t } from 'intlayer';
import type { Metadata } from 'next';
const metadataContent = {
key: 'page-metadata',
content: {
title: t({
en: 'Create Next App',
fr: 'Créer une application Next.js',
es: 'Crear una aplicación Next.js',
}),
description: t({
en: 'Generated by create next app',
fr: 'Généré par create next app',
es: 'Generado por create next app',
}),
},
} satisfies Dictionary<Metadata>;
export default metadataContent;